<!DOCTYPE html> <html> <head> <title>CSS DIV boksen og layout</title> <style> #wrapper { height:550px; width:960px; /*background-color:#ABC123;*/ } #header { height:150px; width:960px; /*background-color:#ABCABC;*/ } #content { height:368px; width:960px; /*background-color:#123456;*/ border-top-style:solid; border-top-color:#BBB; border-top-width:1px; border-bottom-style:solid; border-bottom-color:#BBB; border-bottom-width:1px; } #footer { height:30px; width:960px; /*background-color:#ABC9B3;*/ } </style> </head> <body> <div id="wrapper"> <div id="header">header</div> <div id="content">content</div> <div id="footer">footer</div> </div> </body> </html>